Posted by Jovi 07-17-01 09:21 AM ET (US) on The Admin Page Message Board (http://forums.theadminpage.com/Ultimate.cgi?action=intro) under "UT - Linux Specific Problems". //-Begin Post----------------------------------------------------------------- I have found a bit easier solution. No netcat(nc) needed. My Linux box runs Redhat 7.0 with kernel version 2.4.6 1. Find your xinetd.d directory: whereis xinetd.d Mine is /etc/xinetd.d 2. make file named sfd to your xinetd.d directory: pico /etc/xinet.d/sfd paste following lines to it: service sfd { # port used for web browser connection eg. http://193.167.92.182:9077/ServerAdmin/ # you should use full URL with ending slash / port = 9077 socket_type = stream protocol = tcp wait = no # List of IP addresses those are allowed to connect UT Server admin. Uncomment line by removing # # otherwise connetion is allowed from everywhere # only_from = localhost 127.0.0.1 193.167.92.182 193.167.92.181 user = root log_on_failure += USERID disable = no # If you have multiple network adapters, uncomment line and use bind to tell # IP address of your internet connection. # bind = 193.167.92.182 # Change 8077 in redirect line to the same value as you have in ListenPort value in # [UWeb.WebServer] section of UnrealTournament.ini # eg. ListenPort = 8077 if you do not have ListenPort line in # UnrealTournament.ini, the value is 80 redirect = 127.0.0.1 8077 } 3. Save file 4. Restart xinetd (or reboot yr Linux box) /etc/rc.d/init.d/xinetd restart //-End Post-------------------------------------------------------------------